home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_02 / 9n02072a < prev    next >
Encoding:
Text File  |  1995-11-01  |  406 b   |  24 lines

  1.  
  2. stddef.h
  3.    typedef unsigned int size_t;
  4.  
  5. stdlib.h
  6. /* n is the largest possible randomly generated number 
  7. */
  8.    #define RAND_MAX  n
  9.  
  10. limits.h
  11. /* n is the largest possible value for an int variable 
  12. */
  13.    #define UINT_MAX  n
  14.  
  15. float.h
  16. /* n is the largest possible value for a double variable 
  17. */
  18.    #define DBL_MAX   n
  19.  
  20. string.h
  21.    extern char  *strdup();
  22.    extern int   strcmp();
  23.  
  24.